type golang.org/x/crypto/sha3.state
16 uses
golang.org/x/crypto/sha3 (current package)
legacy_hash.go#L36: return &state{rate: rateK512, outputLen: 32, dsbyte: dsbyteKeccak}
legacy_hash.go#L44: return &state{rate: rateK1024, outputLen: 64, dsbyte: dsbyteKeccak}
legacy_hash.go#L57: type state struct {
legacy_hash.go#L84: func (d *state) BlockSize() int { return d.rate }
legacy_hash.go#L87: func (d *state) Size() int { return d.outputLen }
legacy_hash.go#L91: func (d *state) Reset() {
legacy_hash.go#L100: func (d *state) clone() *state {
legacy_hash.go#L106: func (d *state) permute() {
legacy_hash.go#L129: func (d *state) padAndPermute() {
legacy_hash.go#L146: func (d *state) Write(p []byte) (n int, err error) {
legacy_hash.go#L168: func (d *state) Read(out []byte) (n int, err error) {
legacy_hash.go#L193: func (d *state) Sum(in []byte) []byte {
legacy_hash.go#L212: func (d *state) MarshalBinary() ([]byte, error) {
legacy_hash.go#L216: func (d *state) AppendBinary(b []byte) ([]byte, error) {
legacy_hash.go#L230: func (d *state) UnmarshalBinary(b []byte) error {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |